infinite loop - определение. Что такое infinite loop
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое infinite loop - определение

PROGRAMMING IDIOM
Endless loop; Loop, Infinite; Infinite Loops; Infinite recursion; Neverending Loop; Alderson loop; While(true); While (true); While (True); While(True); While(TRUE); While (TRUE); While (1); While(1); For(;;); For (;;); Tight loops; Tight Loops; Tight Loop; Never ending loop; Infinite loops; Infinite Loop; Endless Loop (computing); Infinity loop; Unproductive loop; Infinite iteration; Unconditional loop; Unconditional loops; Endless loops
  • A [[blue screen of death]] on [[Windows XP]]. "The [[device driver]] got stuck in an infinite loop."
Найдено результатов: 807
infinite loop         
<programming> (Or "endless loop") Where a piece of program is executed repeatedly with no hope of stopping. This is nearly always because of a bug, e.g. if the condition for exiting the loop is wrong, though it may be intentional if the program is controlling an embedded system which is supposed to run continuously until it is turned off. The programmer may also intend the program to run until interrupted by the user. An endless loop may also be used as a last-resort error handler when no other action is appropriate. This is used in some operating system kernels following a panic. A program executing an infinite loop is said to spin or buzz forever and goes catatonic. The program is "wound around the axle". A standard joke has been made about each generation's exemplar of the ultra-fast machine: "The Cray-3 is so fast it can execute an infinite loop in under 2 seconds!" See also black hole, recursion, infinite loop. [Jargon File] (1996-05-11)
Infinite loop         
In computer programming, an infinite loop (or endless loop) is a sequence of instructions that, as written, will continue endlessly, unless an external intervention occurs ("pull the plug"). It may be intentional.
endless loop         
infinite         
2017 STUDIO ALBUM BY DEEP PURPLE
InFinite
1.
If you describe something as infinite, you are emphasizing that it is extremely great in amount or degree.
...an infinite variety of landscapes...
The choice is infinite.
ADJ [emphasis]
infinitely
His design was infinitely better than anything I could have done.
ADV: ADV adj/adv
2.
Something that is infinite has no limit, end, or edge.
Obviously, no company has infinite resources.
ADJ
infinitely
A centimeter can be infinitely divided into smaller units.
ADV: ADV with v
infinite         
2017 STUDIO ALBUM BY DEEP PURPLE
InFinite
<mathematics> 1. Bigger than any natural number. There are various formal set definitions in set theory: a set X is infinite if (i) There is a bijection between X and a proper subset of X. (ii) There is an injection from the set N of natural numbers to X. (iii) There is an injection from each natural number n to X. These definitions are not necessarily equivalent unless we accept the Axiom of Choice. 2. The length of a line extended indefinitely. See also infinite loop, infinite set. [Jargon File] (1995-03-29)
infinite         
2017 STUDIO ALBUM BY DEEP PURPLE
InFinite
I. a.
1.
Unbounded, boundless, unlimited, illimitable, limitless, immeasurable, interminable.
2.
Immense, enormous, vast, stupendous, very great, very large.
3.
Unconditioned, absolute, self-determined, self-existent, eternal.
II. n.
[With The prefixed.] The Absolute, the Eternal. See god.
Infinite         
2017 STUDIO ALBUM BY DEEP PURPLE
InFinite
·noun An infinite quantity or magnitude.
II. Infinite ·noun The Infinite Being; God; the Almighty.
III. Infinite ·noun An infinity; an incalculable or very great number.
IV. Infinite ·adj Indefinitely large or extensive; great; vast; immense; gigantic; prodigious.
V. Infinite ·adj Unlimited or boundless, in time or space; as, infinite duration or distance.
VI. Infinite ·noun That which is infinite; boundless space or duration; infinity; boundlessness.
VII. Infinite ·adj Greater than any assignable quantity of the same kind;
- said of certain quantities.
VIII. Infinite ·adj Without limit in power, capacity, knowledge, or excellence; boundless; immeasurably or inconceivably great; perfect; as, the infinite wisdom and goodness of God;
- opposed to finite.
IX. Infinite ·adj Capable of endless repetition;
- said of certain forms of the canon, called also perpetual fugues, so constructed that their ends lead to their beginnings, and the performance may be incessantly repeated.
infinite         
2017 STUDIO ALBUM BY DEEP PURPLE
InFinite
['?nf?n?t]
¦ adjective
1. limitless in space, extent, or size.
very great in amount or degree.
2. Mathematics greater than any assignable quantity or countable number.
Derivatives
infinitely adverb
infiniteness noun
infinitude ?n'f?n?tju:d noun
Origin
ME: from L. infinitus, from in- 'not' + finitus 'finished, finite'.
tight loop         
WIKTIONARY REDIRECT
Endless loop; Loop, Infinite; Infinite Loops; Infinite recursion; Neverending Loop; Alderson loop; While(true); While (true); While (True); While(True); While(TRUE); While (TRUE); While (1); While(1); For(;;); For (;;); Tight loops; Tight Loops; Tight Loop; Never ending loop; Infinite loops; Infinite Loop; Endless Loop (computing); Infinity loop; Unproductive loop; Infinite iteration; Unconditional loop; Unconditional loops; Endless loops
<programming> A loop of code that executes without releasing any resources to other programs or the operating system. Consider the following pointless BASIC loop that counts upward indefinitely 10 i = i + 1 20 GOTO 10 Run on a single-user system such as MS-DOS this will not cause any problems. Run on a cooperative multitasking operating system such as Windows 3, the system would appear to freeze. A pre-emptive multitasking operating system such as UNIX or Windows NT would "steal" cycles away from the program and continue to run other programs. See also busy-wait and multitasking. (1999-05-06)
Infinite loop space machine         
In topology, a branch of mathematics, given a topological monoid X up to homotopy (in a nice way), an infinite loop space machine produces a group completion of X together with infinite loop space structure. For example, one can take X to be the classifying space of a symmetric monoidal category S; that is, X = BS.

Википедия

Infinite loop

In computer programming, an infinite loop (or endless loop) is a sequence of instructions that, as written, will continue endlessly, unless an external intervention occurs ("pull the plug"). It may be intentional.